Log in Register Dashboard Temp Share Shortlinks Frames API

cody - HTMLify profile

cody's Profile Picture

cody

4270 Files

632703 Views

Latest files of /cody/swapnilsparsh/30DaysOfJavaScript/147 - Screen Recorder

style.css cody/swapnilsparsh/30DaysOfJavaScript/147 - Screen Recorder/style.css
94 Views
0 Comments
body {
font-family: cursive;
background-color: rgb(234, 226, 216);
}

h1{
margin-left: 560px;
}
index.html cody/swapnilsparsh/30DaysOfJavaScript/147 - Screen Recorder/index.html
270 Views
0 Comments
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Screen Recorder💻</title>
<link rel="stylesheet" href="style.css">
readme.md cody/swapnilsparsh/30DaysOfJavaScript/147 - Screen Recorder/readme.md
179 Views
0 Comments
# Screen Recorder: 💻

> It's screen Recorder made using HTML,CSS,JS.Screen Capture API is used in it .It contains 3 functionality
- Start Recording
- Stop Recording
- Download recording

---
script.js cody/swapnilsparsh/30DaysOfJavaScript/147 - Screen Recorder/script.js
145 Views
0 Comments
let preview = document.getElementById("preview");
let recording = document.getElementById("recording");
let startButton = document.getElementById("startButton");
let stopButton = document.getElementById("stopButton");
let downloadButton = document.getElementById("downloadButton");
let logElement = document.getElementById("log");

let recordingTimeMS = 10000;